home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / The World of Computer Software.iso / em-xmkit.zip / ERRORS.H < prev    next >
Text File  |  1989-06-29  |  665b  |  15 lines

  1. /*====================================================================*/
  2. /*       ERROR CODES FOR THE C MEMORY MANAGER                         */
  3. /*====================================================================*/
  4.  
  5. #define INVALID_TOKEN                 0xD0
  6. #define NOT_ENOUGH_UNALLOCATED_PAGES  0xD1
  7. #define TOO_MANY_DIRECTORY_ENTRIES    0xD2
  8. #define REQUEST_FOR_ZERO_LENGTH_BLOCK 0xD3
  9. #define CANNOT_MAP_ALL_BLOCKS         0xD4
  10. #define MAX_PUSH_CONTEXTS_EXCEEDED    0xD5
  11. #define MALLOC_FAILURE                0xD6
  12. #define NO_CONTEXT_AVAILABLE_TO_POP   0xD7
  13. #define ERROR_REALLOCATING_PAGES      0xD8
  14. #define NOT_INITIALIZED               0xD9
  15.